home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- public class DefDynaField extends DefAbstract {
- private String _labelText;
- private String _theQuery;
- private String _theDefaultValue;
- private String _theDataField;
- private int _theDataType;
- private int _theUseDefaultValue;
- private int _theUseQuery;
-
- public void setLabelText(String labelText) {
- this._labelText = labelText;
- }
-
- public String getLabelText() {
- return this._labelText;
- }
-
- public void setQueryComponent(String theQuery) {
- this._theQuery = theQuery;
- }
-
- public void setDefaultValue(String theDefaultValue) {
- this._theDefaultValue = theDefaultValue;
- }
-
- public void setDataField(String theDataField) {
- this._theDataField = theDataField;
- }
-
- public void setDataType(int theDataType) {
- this._theDataType = theDataType;
- }
-
- public void setUseDefaultValue(int theUseDefaultValue) {
- this._theUseDefaultValue = theUseDefaultValue;
- }
-
- public void setUseQuery(int theUseQuery) {
- this._theUseQuery = theUseQuery;
- }
-
- public String getQueryComponent() {
- return this._theQuery;
- }
-
- public String getDefaultValue() {
- return this._theDefaultValue;
- }
-
- public String getDataField() {
- return this._theDataField;
- }
-
- public int getDataType() {
- return this._theDataType;
- }
-
- public int getUseDefaultValue() {
- return this._theUseDefaultValue;
- }
-
- public int getUseQuery() {
- return this._theUseQuery;
- }
-
- public String getBaseName() {
- return "MSDBDynaField";
- }
- }
-